home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- REM %1=DRIVE
- REM -----------------------------
- ECHO
- ECHO ╔═════════════════════════════════════════════════════╗
- ECHO ║ ║
- ECHO ║ PC Graphics Unleashed ║
- ECHO ║ ║
- ECHO ║ CD-ROM Installation Program ║
- ECHO ║ ║
- ECHO ╚═════════════════════════════════════════════════════╝
- ECHO
- ECHO
- ECHO ─────────────────────────────────────────────────────────────
- ECHO The files for Chapter 17 will be installed to your %1
- ECHO hard drive. You need at least 2 megabytes of free space.
- ECHO.
- ECHO.
- ECHO If this is NOT what you want to do, press the Ctrl + C
- ECHO keys to stop this batch program.
- ECHO ─────────────────────────────────────────────────────────────
- ECHO
- ECHO
- ECHO
- PAUSE Paused... press any key to continue the installation
- CLS
- ECHO
- ECHO ┌───────────────────────────────────────────────────────────────────────┐
- ECHO │ The software will now be installed to your %1 hard drive. │
- ECHO │ You'll see a message telling you when the installation is finished. │
- ECHO └───────────────────────────────────────────────────────────────────────┘
- IF EXIST C:\PCGU\nul GOTO COPYING
- MD C:\PCGU
- :COPYING
- MD C:\PCGU\CH17
- MD C:\PCGU\CH17\BAS
- MD C:\PCGU\CH17\PI
- XCOPY \CH17\BAS\*.* %1\PCGU\CH17\BAS\
- XCOPY \CH17\PI\*.* %1\PCGU\CH17\PI\ /S /E
- CLS
- ECHO
- ECHO
- ECHO ═════════════════════════════════════════════════════════════════
- ECHO.
- ECHO The installation of the Chapter 17 software is complete.
- ECHO You'll find the files in the %1\PCGU\CH17 directory.
- ECHO.
- ECHO The animations for this chapter were not installed to your
- ECHO hard drive. To play one of these animations, change to the
- ECHO \CH17\FLICS directory and run any of the EXE files. Press
- ECHO the 1 through 0 keys to speed up or slow down the animation.
- ECHO Press the Esc key to exit the animation.
- ECHO.
- ECHO ═════════════════════════════════════════════════════════════════
- ECHO
- ECHO
- pause
- cls
-